Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/index.html
350 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"
readme.md /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/readme.md
247 Views
0 Comments
# Sudoku Game 🧩
---
## Describtion:
> It's a typical **Sudoku game** with 10X10 box is provided with some pre defined numbers .
script.js /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/script.js
215 Views
0 Comments

var numSelected = null;
var tileSelected = null;

var errors = 0;

var board = [
"--74916-5",
style.css /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/style.css
157 Views
0 Comments
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}

hr {
width: 500px;
}